Robust Joint Modelling Framework
Joint modelling of longitudinal time-to-event outcomes typically combines a linear mixed-effects model for repeated measures and a Cox model with time-varying frailty for time-to-event outcome (Asar et al., 2015). Typical distributional assumption is that random-effects and measurement error terms in mixed-effects model are Gaussian. However, this assumption might be restricive for real-life problems, where it is quite likely to have
subjects who do not conform the population averaged trends (they are examples of outliers in the random-effects), and
subjects who has a few observations that are quite different compared to the rest of the observations for subjects’ own collection of measurements (they are examples of outliers in measurement error).
Gaussian distribution would not give appropriate weights to the outliers, hence inference might be biased and inefficient, and personalised predictions might be misleading. A natural approach would be to replace the Gaussian assumption with t distribution. Technical details of joint models with t distributions, and associated inferential methods are skipped here, and interested reader is referred to Asar, Fournier and Dantan (2019).
Implementation
We describe the
R package robjm to implement the
joint models with Gaussian and t distributed random-effects and error terms,
and subsequently to obtain personalised dynamic predictions.
For illustration, we will use the
AIDS data-set (first 250 subjects only).
Note that the biomarker of interest is the CD4 cell counts, and the
survival event is death.
robjm is still under development, hence is currently only available from Github.
Note that robjm internatlly calls tidyverse and rstan packages.
To install robjm from Github and load into the working environment,
use the following lines:
devtools::install_github("ozgurasarstat/robjm", quiet = TRUE)
suppressMessages(library(robjm))
AIDS data-set can be loaded prepared for analysis using
data(aids)
data(aids.id)
aids$drug2 <- ifelse(aids$drug == "ddC", 0, 1)
aids.id$drug2 <- ifelse(aids.id$drug == "ddC", 0, 1)
idlist <- aids.id$patient
long_data <- aids[aids$patient %in% idlist[1:250], ]
surv_data <- aids.id[aids.id$patient %in% idlist[1:250], ]
Below, we first fit the joint model with Gaussian random effects and Gaussian error terms, and then t distributed random effects and t distributed error terms.
## normal normal model
fit_nor_nor <- fit_jm(fixed_long = CD4 ~ obstime,
random_long = ~ obstime,
fixed_surv = cbind(Time, death) ~ drug2,
data_long = long_data,
data_surv = surv_data,
id_long = "patient",
id_surv = "patient",
model = "nor_nor",
timeVar = "obstime",
bh = "weibull",
chains = 2,
cores = 2,
iter = 4000,
warmup = 2000,
control = list(adapt_delta = 0.9)
)
fit_t_t <- fit_jm(fixed_long = CD4 ~ obstime,
random_long = ~ obstime,
fixed_surv = cbind(Time, death) ~ drug2,
data_long = long_data,
data_surv = surv_data,
id_long = "patient",
id_surv = "patient",
model = "t_t_mod3",
timeVar = "obstime",
bh = "weibull",
chains = 2,
cores = 2,
iter = 4000,
warmup = 2000,
control = list(adapt_delta = 0.9)
)
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.9 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: There were 4 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 2 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
print(fit_nor_nor$res,
pars = c("alpha", "Sigma", "sigmasq", "log_lambda",
"log_nu", "omega", "eta"))
## Inference for Stan model: cc3bb0e249a9f8cb9af6f1735fffcd05.
## 2 chains, each with iter=4000; warmup=2000; thin=1;
## post-warmup draws per chain=2000, total post-warmup draws=4000.
##
## mean se_mean sd 2.5% 25% 50% 75% 97.5% n_eff Rhat
## alpha[1] 7.64 0.02 0.31 7.03 7.43 7.64 7.85 8.24 308 1.01
## alpha[2] -0.20 0.00 0.02 -0.24 -0.21 -0.20 -0.18 -0.15 1375 1.00
## Sigma[1,1] 22.21 0.04 2.21 18.28 20.69 22.06 23.54 26.95 3191 1.00
## Sigma[1,2] 0.10 0.00 0.11 -0.12 0.03 0.09 0.17 0.30 1017 1.00
## Sigma[2,1] 0.10 0.00 0.11 -0.12 0.03 0.09 0.17 0.30 1017 1.00
## Sigma[2,2] 0.04 0.00 0.01 0.02 0.03 0.04 0.05 0.06 415 1.00
## sigmasq 3.61 0.01 0.28 3.11 3.41 3.59 3.79 4.19 1115 1.00
## log_lambda -2.89 0.01 0.51 -3.93 -3.22 -2.88 -2.55 -1.92 1864 1.00
## log_nu 0.27 0.00 0.12 0.03 0.19 0.27 0.35 0.50 2122 1.00
## omega[1] 0.52 0.00 0.25 0.03 0.34 0.52 0.69 1.02 3362 1.00
## eta -0.49 0.00 0.09 -0.69 -0.54 -0.48 -0.43 -0.35 1122 1.00
##
## Samples were drawn using NUTS(diag_e) at Mon Jul 22 17:16:08 2019.
## For each parameter, n_eff is a crude measure of effective sample size,
## and Rhat is the potential scale reduction factor on split chains (at
## convergence, Rhat=1).
print(fit_t_t$res,
pars = c("alpha", "Sigma", "sigmasq", "phi", "delta",
"log_lambda", "log_nu", "omega", "eta"))
## Inference for Stan model: 69f8702e79f5fb7927b6416c942566e8.
## 2 chains, each with iter=4000; warmup=2000; thin=1;
## post-warmup draws per chain=2000, total post-warmup draws=4000.
##
## mean se_mean sd 2.5% 25% 50% 75% 97.5% n_eff Rhat
## alpha[1] 7.49 0.02 0.32 6.87 7.27 7.49 7.70 8.13 401 1.00
## alpha[2] -0.19 0.00 0.02 -0.23 -0.20 -0.19 -0.18 -0.15 961 1.00
## Sigma[1,1] 21.73 0.11 2.35 17.30 20.10 21.66 23.27 26.54 449 1.00
## Sigma[1,2] 0.08 0.00 0.09 -0.10 0.02 0.08 0.13 0.25 1324 1.00
## Sigma[2,1] 0.08 0.00 0.09 -0.10 0.02 0.08 0.13 0.25 1324 1.00
## Sigma[2,2] 0.02 0.00 0.01 0.01 0.02 0.02 0.03 0.04 175 1.00
## sigmasq 1.45 0.02 0.24 1.05 1.28 1.43 1.60 1.97 240 1.00
## phi 42.43 2.93 24.24 9.19 22.56 37.82 59.01 94.41 69 1.01
## delta 3.19 0.04 0.59 2.30 2.77 3.11 3.51 4.60 172 1.00
## log_lambda -2.97 0.01 0.48 -3.93 -3.29 -2.95 -2.64 -2.07 4196 1.00
## log_nu 0.27 0.00 0.11 0.04 0.20 0.28 0.35 0.49 4053 1.00
## omega[1] 0.47 0.00 0.23 0.02 0.31 0.47 0.62 0.94 5917 1.00
## eta -0.45 0.00 0.07 -0.59 -0.49 -0.44 -0.40 -0.32 2987 1.00
##
## Samples were drawn using NUTS(diag_e) at Mon Jul 22 23:01:19 2019.
## For each parameter, n_eff is a crude measure of effective sample size,
## and Rhat is the potential scale reduction factor on split chains (at
## convergence, Rhat=1).
Traceplots of the MCMC samples can be visualised by
traceplot(fit_nor_nor$res,
pars = c("alpha", "Sigma", "sigmasq", "log_lambda",
"log_nu", "omega", "eta"),
inc_warmup = FALSE)

traceplot(fit_t_t$res,
pars = c("alpha", "Sigma", "sigmasq", "phi", "delta",
"log_lambda", "log_nu", "omega", "eta"),
inc_warmup = FALSE)
Dynamic predictions for a new subject, say 251th subject, can be obtained by
newdata <- dplyr::filter(aids, patient == idlist[251])
fore_nor_nor <- predSurv_jm(object = fit_nor_nor,
newdata = newdata,
forecast = list(h = 5, n = 5),
B_control = list(nsel_b = 1))
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.13 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.145 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.078 seconds (Warm-up)
## Chain 1: 0.11 seconds (Sampling)
## Chain 1: 0.188 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.047 seconds (Warm-up)
## Chain 1: 0.046 seconds (Sampling)
## Chain 1: 0.093 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1: 0.109 seconds (Sampling)
## Chain 1: 0.14 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.031 seconds (Sampling)
## Chain 1: 0.047 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1: 0.021 seconds (Sampling)
## Chain 1: 0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.063 seconds (Warm-up)
## Chain 1: 0.031 seconds (Sampling)
## Chain 1: 0.094 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.036 seconds (Sampling)
## Chain 1: 0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.025 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.046 seconds (Warm-up)
## Chain 1: 0.031 seconds (Sampling)
## Chain 1: 0.077 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.11 seconds (Warm-up)
## Chain 1: 0.077 seconds (Sampling)
## Chain 1: 0.187 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.134 seconds (Warm-up)
## Chain 1: 0.047 seconds (Sampling)
## Chain 1: 0.181 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.063 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.079 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.094 seconds (Sampling)
## Chain 1: 0.11 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.125 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.125 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1: 0.031 seconds (Sampling)
## Chain 1: 0.062 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1: 0.023 seconds (Sampling)
## Chain 1: 0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.11 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.125 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.084 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.084 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.063 seconds (Sampling)
## Chain 1: 0.063 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.84, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.031 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.372 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.372 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.063 seconds (Sampling)
## Chain 1: 0.078 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.047 seconds (Warm-up)
## Chain 1: 0.046 seconds (Sampling)
## Chain 1: 0.093 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.001 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.066 seconds (Sampling)
## Chain 1: 0.071 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1: 0.024 seconds (Sampling)
## Chain 1: 0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.76, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.001 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.019 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.002 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0 seconds (Sampling)
## Chain 1: 0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.003 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.021 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
fore_t_t <- predSurv_jm(object = fit_t_t,
newdata = newdata,
forecast = list(h = 5, n = 5),
B_control = list(nsel_b = 1))
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.107 seconds (Sampling)
## Chain 1: 0.114 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.021 seconds (Sampling)
## Chain 1: 0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.157 seconds (Sampling)
## Chain 1: 0.158 seconds (Total)
## Chain 1:
## Warning: There were 12 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.044 seconds (Sampling)
## Chain 1: 0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.175 seconds (Sampling)
## Chain 1: 0.176 seconds (Total)
## Chain 1:
## Warning: There were 14 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.057 seconds (Sampling)
## Chain 1: 0.058 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.005 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.105 seconds (Sampling)
## Chain 1: 0.108 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0 seconds (Warm-up)
## Chain 1: 0.004 seconds (Sampling)
## Chain 1: 0.004 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.201 seconds (Sampling)
## Chain 1: 0.202 seconds (Total)
## Chain 1:
## Warning: There were 17 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.196 seconds (Sampling)
## Chain 1: 0.197 seconds (Total)
## Chain 1:
## Warning: There were 10 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.055 seconds (Sampling)
## Chain 1: 0.056 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.025 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.039 seconds (Sampling)
## Chain 1: 0.04 seconds (Total)
## Chain 1:
## Warning: There were 2 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.026 seconds (Sampling)
## Chain 1: 0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.02 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.037 seconds (Warm-up)
## Chain 1: 0.025 seconds (Sampling)
## Chain 1: 0.062 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.024 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.021 seconds (Sampling)
## Chain 1: 0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.083 seconds (Sampling)
## Chain 1: 0.086 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.043 seconds (Sampling)
## Chain 1: 0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.216 seconds (Sampling)
## Chain 1: 0.217 seconds (Total)
## Chain 1:
## Warning: There were 18 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.023 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.184 seconds (Sampling)
## Chain 1: 0.185 seconds (Total)
## Chain 1:
## Warning: There were 14 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.039 seconds (Sampling)
## Chain 1: 0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: There were 5 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.223 seconds (Sampling)
## Chain 1: 0.224 seconds (Total)
## Chain 1:
## Warning: There were 19 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.02 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.022 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.019 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.024 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: There were 5 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.043 seconds (Sampling)
## Chain 1: 0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.061 seconds (Sampling)
## Chain 1: 0.063 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.038 seconds (Sampling)
## Chain 1: 0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.02 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.019 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.057 seconds (Warm-up)
## Chain 1: 0.006 seconds (Sampling)
## Chain 1: 0.063 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.057 seconds (Sampling)
## Chain 1: 0.06 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.033 seconds (Sampling)
## Chain 1: 0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.022 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1: 0.027 seconds (Sampling)
## Chain 1: 0.054 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.016 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.144 seconds (Sampling)
## Chain 1: 0.145 seconds (Total)
## Chain 1:
## Warning: There were 12 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.02 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1: 0.053 seconds (Sampling)
## Chain 1: 0.056 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1: 0.017 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.018 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1: 0.019 seconds (Sampling)
## Chain 1: 0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.021 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.014 seconds (Sampling)
## Chain 1: 0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1: 0.044 seconds (Sampling)
## Chain 1: 0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.177 seconds (Sampling)
## Chain 1: 0.179 seconds (Total)
## Chain 1:
## Warning: There were 13 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1: 0.18 seconds (Sampling)
## Chain 1: 0.182 seconds (Total)
## Chain 1:
## Warning: There were 13 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1: 0.192 seconds (Sampling)
## Chain 1: 0.193 seconds (Total)
## Chain 1:
## Warning: There were 16 transitions after warmup that exceeded the maximum treedepth. Increase max_treedepth above 10. See
## http://mc-stan.org/misc/warnings.html#maximum-treedepth-exceeded
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.01 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.011 seconds (Sampling)
## Chain 1: 0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1: 0.015 seconds (Sampling)
## Chain 1: 0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1: 0.012 seconds (Sampling)
## Chain 1: 0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1: 0.013 seconds (Sampling)
## Chain 1: 0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.009 seconds (Sampling)
## Chain 1: 0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1: 0.008 seconds (Sampling)
## Chain 1: 0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1: three stages of adaptation as currently configured.
## Chain 1: Reducing each adaptation stage to 15%/75%/10% of
## Chain 1: the given number of warmup iterations:
## Chain 1: init_buffer = 3
## Chain 1: adapt_window = 15
## Chain 1: term_buffer = 2
## Chain 1:
## Chain 1: Iteration: 1 / 40 [ 2%] (Warmup)
## Chain 1: Iteration: 4 / 40 [ 10%] (Warmup)
## Chain 1: Iteration: 8 / 40 [ 20%] (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%] (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%] (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%] (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%] (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%] (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%] (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%] (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%] (Sampling)
## Chain 1: Iteration: 40 / 40 [100%] (Sampling)
## Chain 1:
## Chain 1: Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1: 0.007 seconds (Sampling)
## Chain 1: 0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
##
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1:
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1:
## Chain 1:
## Chain 1: WARNING: There aren'